home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / setbuffer.c < prev    next >
C/C++ Source or Header  |  1988-07-28  |  2KB  |  55 lines

  1. /* 
  2.  * setbuffer.c --
  3.  *
  4.  *    Source code for the "setbuffer" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: setbuffer.c,v 1.2 88/07/28 17:18:45 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * setbuffer --
  26.  *
  27.  *    Reset the buffering strategy to use for stream.
  28.  *
  29.  * Results:
  30.  *    None.
  31.  *
  32.  * Side effects:
  33.  *    If buf is NULL, stream will be unbuffered from now on.  Otherwise,
  34.  *    buf will be used as the buffer for stream.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. void
  40. setbuffer(stream, buf, size)
  41.     FILE *stream;        /* Stream to be re-buffered. */
  42.     char *buf;            /* New buffer to use for stream.   NULL means
  43.                  * make stream unbuffered.  Otherwise, this
  44.                  * space must persist until the stream is
  45.                  * closed or rebuffered. */
  46.     int size;            /* Number of bytes of storage space at
  47.                  * buf. */
  48. {
  49.     if (buf == 0) {
  50.     (void) setvbuf(stream, (char *) 0, _IONBF, 1);
  51.     } else {
  52.     (void) setvbuf(stream, buf, _IOFBF, size);
  53.     }
  54. }
  55.